home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / CodeWarrior Lite / Metrowerks C⁄C++ Lite / Headers / PPC Specific / alloca.h next >
Encoding:
C/C++ Source or Header  |  1995-04-12  |  215 b   |  15 lines  |  [TEXT/MPCC]

  1. /*
  2.  *    File:        alloca.h
  3.  *                ©1993-1995 metrowerks Inc. All rights reserved
  4.  *
  5.  *    Content:    alloca() support for Metrowerks C++ (PowerPC)
  6.  *
  7.  */
  8.  
  9. #ifndef _ALLOCA
  10. #define    _ALLOCA
  11.  
  12. #define    alloca(x)    __alloca(x)
  13.  
  14. #endif
  15.